home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000360_fdc@columbia.edu_Fri Sep 13 12:49:31 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  77 lines

  1. Article: 13692 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Need help: C-Kermit to send message page by using TAP protocol.
  6. Date: 13 Sep 2002 12:49:21 -0400
  7. Organization: Columbia University
  8. Lines: 60
  9. Message-ID: <alt4uh$18a$1@watsol.cc.columbia.edu>
  10. References: <8f01e2d0.0209130838.38896a2d@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1031935763 29394 128.59.39.139 (13 Sep 2002 16:49:23 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 13 Sep 2002 16:49:23 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13692
  16.  
  17. In article <8f01e2d0.0209130838.38896a2d@posting.google.com>,
  18. Ben <hwting@yahoo.com> wrote:
  19. : I am using the C-Kermit 6.0.192 that come with the HPUX 11.00.
  20. :
  21. C-Kermit is up to version 8.0 now:
  22.  
  23.   http://www.columbia.edu/kermit/ckermit.html
  24.  
  25. : I managed to use the alphapage6 script that I download from
  26. : ftp://kermit.columbia.edu/kermit/scripts/ckermit/alphapage6 to send a
  27. : message page.
  28. The newer version of alphapage can be used with the current release
  29. of Kermit.
  30.  
  31. : Addition setting has been added in the alphapage6 script, so that
  32. : Kermit will return back to UNIX prompt after the completion of
  33. : execution.
  34. : set exit warning off
  35. : From my Unix script, I call the Kermit by the following command.
  36. : kermit -Y -C "take alphapage, apage Pager# { Test Page }, exit"
  37. : Question 1:
  38. : My HP server has five dial-out ports that connected to the 3 USRmodems
  39. : and 2 generic modems.  All the modems have tested and worked fine with
  40. : C-Kermit.  How do I configure the C-Kermit so that the script will
  41. : check the availability of the modem? For instance, Modem port1
  42. : (cul2a1) is in use or no carrier and Kermit program will search for
  43. : the next available modem to perform the page.  What should I need to
  44. : include in the alphapage script?
  45. See "getline" in the Modem Scripts section of:
  46.  
  47.   http://www.columbia.edu/kermit/ckscripts.html
  48.  
  49. : Question 2:
  50. : Where can I find the log file for the modem status or modem dialing
  51. : process, such a no dial tone, no carrier or modem in use?
  52. :  
  53. Add "set dial display on" to your script.  The messages are displayed
  54. on your screen.  Kermit doesn't have a special log for modem interactions.
  55.  
  56. After dialing, Kermit's \v(dialresult) variable contains the modem's
  57. response to the dialing command.
  58.  
  59. : Question 3:
  60. : Where can I found the documentation of C-Kermit 6.0.192 or guide to
  61. : write the Kermit script?
  62. http://www.columbia.edu/kermit/ck60manual.html
  63.  
  64. The features added in versions 7.0 and 8.0 are documented here:
  65.  
  66.   http://www.columbia.edu/kermit/ckermit70.html
  67.   http://www.columbia.edu/kermit/ckermit80.html
  68.  
  69. - Frank
  70.